home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / RCS / Net_NetToHostShort.c,v < prev    next >
Text File  |  1991-10-22  |  3KB  |  136 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.3.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     89.01.27.16.38.40;  author mendel;  state Exp;
  11. branches 1.3.1.1;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     88.11.21.09.28.24;  author mendel;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.11.21.09.10.25;  author mendel;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24. 1.3.1.1
  25. date     91.10.22.14.51.11;  author kupfer;  state Exp;
  26. branches ;
  27. next     ;
  28.  
  29.  
  30. desc
  31. @Formed from net.c of src/lib/old/net.c.
  32. @
  33.  
  34.  
  35. 1.3
  36. log
  37. @Removed newline from rcsid string.
  38. @
  39. text
  40. @/* 
  41.  * Net_NetToHostShort.c --
  42.  *
  43.  *    Convert a short integer from network to host byte ordering.
  44.  *
  45.  * Copyright 1988 Regents of the University of California
  46.  * All rights reserved.
  47.  * Permission to use, copy, modify, and distribute this
  48.  * software and its documentation for any purpose and without
  49.  * fee is hereby granted, provided that the above copyright
  50.  * notice appear in all copies.  The University of California
  51.  * makes no representations about the suitability of this
  52.  * software for any purpose.  It is provided "as is" without
  53.  * express or implied warranty.
  54.  */
  55.  
  56. #ifndef lint
  57. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_NetToHostShort.c,v 1.2 88/11/21 09:28:24 mendel Exp $ SPRITE (Berkeley)";
  58. #endif not lint
  59.  
  60.  
  61. #include "machparam.h"
  62.  
  63. /* 
  64.  *----------------------------------------------------------------------
  65.  *
  66.  * Net_NetToHostShort --
  67.  *
  68.  *    Convert a short integer in network byte order to an short integer in 
  69.  *    host byte order.
  70.  *
  71.  * Results:
  72.  *    The short integer in host byte order.
  73.  *
  74.  * Side effects:
  75.  *    None.
  76.  *
  77.  *----------------------------------------------------------------------
  78.  */
  79. unsigned short 
  80. Net_NetToHostShort(shortInt)
  81.     unsigned short shortInt;     /* A short int in network byte order. */
  82. {
  83.  
  84. #if BYTE_ORDER == LITTLE_ENDIAN
  85.     union swab {
  86.         unsigned short s;
  87.         unsigned char  c[2];
  88.     } in, out;
  89.  
  90.     in.s = shortInt;
  91.     out.c[0] = in.c[1];
  92.     out.c[1] = in.c[0];
  93.  
  94.      return (out.s);
  95. #else
  96.     return (shortInt);
  97. #endif
  98. }
  99. @
  100.  
  101.  
  102. 1.3.1.1
  103. log
  104. @Initial branch for Sprite server.
  105. @
  106. text
  107. @d18 1
  108. a18 1
  109. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_NetToHostShort.c,v 1.3 89/01/27 16:38:40 mendel Exp $ SPRITE (Berkeley)";
  110. @
  111.  
  112.  
  113. 1.2
  114. log
  115. @Fixed typo.
  116. @
  117. text
  118. @d18 1
  119. a18 2
  120. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_NetToHostShort.c,v 1.1 88/11/21 09:10:25 mendel Exp $ SPRITE
  121.  (Berkeley)";
  122. @
  123.  
  124.  
  125. 1.1
  126. log
  127. @Initial revision
  128. @
  129. text
  130. @d18 1
  131. a18 1
  132. static char rcsid[] = "$Header: net.c,v 2.0 87/08/11 09:34:20 brent Exp $ SPRITE
  133. a60 1
  134. #endif
  135. @
  136.